crypto/tls.clientHelloMsg.cipherSuites (field)
33 uses
crypto/tls (current package)
handshake_client.go#L99: hello.cipherSuites = make([]uint16, 0, len(configCipherSuites))
handshake_client.go#L111: hello.cipherSuites = append(hello.cipherSuites, suiteId)
handshake_client.go#L142: hello.cipherSuites = nil
handshake_client.go#L145: hello.cipherSuites = append(hello.cipherSuites, defaultCipherSuitesTLS13...)
handshake_client.go#L147: hello.cipherSuites = append(hello.cipherSuites, defaultCipherSuitesTLS13NoAES...)
handshake_client.go#L448: if mutualCipherSuite(hello.cipherSuites, session.cipherSuite) == nil {
handshake_client.go#L469: for _, offeredID := range hello.cipherSuites {
handshake_client.go#L487: if session.EarlyData && mutualCipherSuiteTLS13(hello.cipherSuites, session.cipherSuite) != nil {
handshake_client.go#L624: if hs.suite = mutualCipherSuite(hs.hello.cipherSuites, hs.serverHello.cipherSuite); hs.suite == nil {
handshake_client_tls13.go#L209: selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
handshake_messages.go#L76: cipherSuites []uint16
handshake_messages.go#L355: for _, suite := range m.cipherSuites {
handshake_messages.go#L430: m.cipherSuites = []uint16{}
handshake_messages.go#L440: m.cipherSuites = append(m.cipherSuites, suite)
handshake_messages.go#L685: cipherSuites: slices.Clone(m.cipherSuites),
handshake_server.go#L353: if !hasAESGCMHardwareSupport || !aesgcmPreferred(hs.clientHello.cipherSuites) {
handshake_server.go#L368: hs.suite = selectCipherSuite(preferenceList, hs.clientHello.cipherSuites, hs.cipherSuiteOk)
handshake_server.go#L384: for _, id := range hs.clientHello.cipherSuites {
handshake_server.go#L464: for _, id := range hs.clientHello.cipherSuites {
handshake_server.go#L959: CipherSuites: clientHello.cipherSuites,
handshake_server_tls13.go#L116: for _, id := range hs.clientHello.cipherSuites {
handshake_server_tls13.go#L165: if !hasAESGCMHardwareSupport || !aesgcmPreferred(hs.clientHello.cipherSuites) {
handshake_server_tls13.go#L169: hs.suite = mutualCipherSuiteTLS13(hs.clientHello.cipherSuites, suiteID)
handshake_server_tls13.go#L584: len(ch.cipherSuites) != len(ch1.cipherSuites) ||
handshake_server_tls13.go#L596: for i := range ch.cipherSuites {
handshake_server_tls13.go#L597: if ch.cipherSuites[i] != ch1.cipherSuites[i] {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |